home *** CD-ROM | disk | FTP | other *** search
- global gMoodS, gStateS, gAnswersS, gWin
-
- on startMovie
- set gAnswersS to 1
- end
-
- on PickMood
- set gMoodS to random(3)
- if gMoodS = 1 then
- play frame "MoodBad"
- else
- nothing()
- end if
- if gMoodS = 2 then
- play frame "MoodTired"
- else
- nothing()
- end if
- if gMoodS = 3 then
- play frame "MoodHorny"
- else
- nothing()
- end if
- end
-
- on stateOfBeing
- set gStateS to 3
- set the castNum of sprite 13 to gStateS
- updateStage()
- end
-